home *** CD-ROM | disk | FTP | other *** search
- /* This is because of bug in compiler */
- #ifdef lint
- # define VOID (void)
- #else
- # define VOID
- #endif
-
- /* This is for compatibility with other C compilers */
- #define long int
-
- #define WINDOW 128
-
- #define SAMPLESTR 1
- #define AUTHORSTR 2
-
- #define MENUS 5
- #define APPLE 1
- #define ABOUT 1
- #define FILE 256
- #define OPEN1 1
- #define OPEN2 2
- #define OPEN3 3
- #define QUIT 5
- #define EDIT 257
- #define TEUNDO 1
- #define TECUT 3
- #define TECOPY 4
- #define TEPASTE 5
- #define TECLEAR 6
- #define FONTS 258
- #define FONTSIZE 259
-
- #define BAR 1
- #define WATCH 4
- #define FINGER 256
-
- #define NONE -1
- MenuHandle my_menus[MENUS];
- long the_menu, the_item;
- EventRecord my_event;
- CursHandle finger_c, watch_c, bar_c;
- WindowPtr which_w, the_w;
- WindowRecord w_record;
- Rect ascii_r, text_r, view_r, char_r[16][16];
- Point mouse_p;
- Handle sample_str, author_str;
- TEHandle h_text, h_authortext;
- int which_font;
- char font_name[64];
- int font_sizes[64];
- int num_of_sizes = 0;
- short scrap_count;
- int file_num, volume_num;
- SFReply file_record;
-